home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 1.iso / pc / data / m09intro.dir / 00040.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  823 b   |  25 lines

  1. on mouseDown
  2.   global gCurrentHtPage, gTotalHtPages, gHyperText
  3.   if gCurrentHtPage < gTotalHtPages then
  4.     set the castNum of sprite 7 to cast "b072"
  5.     if pressButton(7) then
  6.       set gCurrentHtPage to gCurrentHtPage + 1
  7.       set myPageNum to "ht" & gCurrentHtPage & "-" & gTotalHtPages
  8.       set myHyperText to gHyperText & gCurrentHtPage
  9.     else
  10.       set myPageNum to "ht" & gCurrentHtPage & "-" & gTotalHtPages
  11.       set myHyperText to gHyperText & gCurrentHtPage
  12.     end if
  13.     pupSprites(5, 10, 1)
  14.     set the castNum of sprite 10 to cast myHyperText
  15.     set the castNum of sprite 9 to cast myPageNum
  16.     set the castNum of sprite 6 to cast "b073"
  17.     if gCurrentHtPage = gTotalHtPages then
  18.       set the castNum of sprite 7 to cast "blankhtnext"
  19.     end if
  20.     updateStage()
  21.   else
  22.     nothing()
  23.   end if
  24. end
  25.